import java.io.*;
import java.net.*;


public class gui_client {

	public static Socket socket_communication;

	
	public static void main(String[] args) throws IOException 
	{
		 socket_communication = new Socket(InetAddress.getLocalHost(), 8081);
		 BufferedReader br = new BufferedReader(new InputStreamReader(socket_communication.getInputStream()));
		 PrintWriter pw = new PrintWriter(socket_communication.getOutputStream(), true);
		 pw.println("Salut Serveur");
	}
	
}
